<%@ Page Language="vb" Trace="True" %>
<%@ Register TagPrefix="Hello" Namespace="ASPNETByExample" Assembly="HelloWorldVB" %>
<%@ Import Namespace="ASPNETByExample" %>
<script runat="server">
Sub Page_Load()
hello.myProperty = "Programmatic"
End Sub
</script>
<html>
<body>
<form runat="server">
<Hello:HelloLifeCycleVB runat="server" ID="hello" myProperty="Declarative" />
<asp:Button runat="server" Text="PostBack" ID="btnPostBack" />
</form>
</body>
</html>